home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / D_E / ELFISH.ZIP / EF480.EXE / BOOTSTAC.BAT < prev    next >
DOS Batch File  |  1994-02-09  |  3KB  |  90 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO           MAXIS Boot Disk Creation Utility Version 1.00
  4. ECHO                                 by
  5. ECHO                  Chris Blackwell & Roger Johnsen
  6. ECHO.
  7. ECHO This file will attempt to create a boot disk in your A: drive
  8. ECHO You must now place a BLANK diskette in the A: drive. This disk
  9. ECHO will be formatted and all data on the disk will be lost. Make sure
  10. ECHO that you do not have any diskettes in the A: drive that have
  11. ECHO important data on them (for example, make sure that none of the
  12. ECHO game diskettes are in the A: drive!)
  13. ECHO.
  14. PAUSE
  15.  
  16. REM *** This paragraph describes what files it expects to find where ***
  17.  
  18. CLS
  19. ECHO This batch program expects to find the file FORMAT.COM file in 
  20. ECHO a directory called DOS in your C: drive. If it is not there 
  21. ECHO (for example, if your DOS directory is not C:\DOS this program)
  22. ECHO will not work.
  23. ECHO.
  24. ECHO It also expects to find the file MOUSE.COM or MOUSE.EXE in either 
  25. ECHO C:\, C:\MOUSE ECHO C:\DOS, C:\WINDOWS or C:\VGAUTIL (the program 
  26. ECHO will automatically copy the first one it finds to the boot disk). 
  27. ECHO If it cannot find this file, either because it is not on your system, 
  28. ECHO or is in a different directory, you can copy it to the boot disk 
  29. ECHO when you are done. If you do not have a copy of the MOUSE.COM or 
  30. ECHO MOUSE.EXE, check the utility diskettes that came with your computer 
  31. ECHO or mouse, or contact the manufacturer of the system to inquire in 
  32. ECHO regard to obtaining a mouse driver. Maxis cannot provide you 
  33. ECHO with a mouse driver.
  34. ECHO **********ATTENTION USERS OF STACKER V.3.0 OR EARLIER***********
  35. ECHO This program is looking for the STACKER device drivers to be installed
  36. ECHO in the default destination directory of C:\STACKER. If your files are
  37. ECHO located elsewhere, please refer to your manual for correct usage or 
  38. ECHO contact STAC ELECTRONICS Technical Support.
  39. ECHO.
  40. ECHO Please insert the blank diskette in the A: drive now and hit any
  41. ECHO to continue. ALL INFORMATION ON THIS DISK WILL BE ERASED!
  42. ECHO.
  43. PAUSE
  44. ECHO.
  45. ECHO If you are sure that the disk you inserted into the A: drive is
  46. ECHO BLANK and NOT your game diskette, hit any key to continue.
  47. ECHO.
  48. PAUSE
  49.  
  50. C:\DOS\FORMAT A: /S /V:BOOT
  51. IF ERRORLEVEL 1 GOTO NO_FORMAT
  52.  
  53. REM *** COPY commands go here ***
  54.  
  55. COPY AUTOEXEC.000 A:AUTOEXEC.BAT
  56. COPY CONFIG.001 A:CONFIG.SYS
  57.  
  58. COPY C:\DOS\MOUSE.COM A:
  59. COPY C:\WINDOWS\MOUSE.COM A:
  60. COPY C:\MOUSE.COM A:
  61. COPY C:\MOUSE\MOUSE.COM A:
  62. COPY C:\MSMOUSE\MOUSE.COM A:
  63. COPY C:\MOUSE.EXE A:
  64. COPY C:\DOS\MOUSE.EXE A:
  65. COPY C:\MSMOUSE\MOUSE.EXE A:
  66. COPY C:\LMOUSE\MOUSE.COM A:
  67. COPY C:\AMOUSE\MOUSE.COM A:
  68. COPY C:\VGAUTILS\MOUSE.COM A:
  69. GOTO END
  70.  
  71. :NO_FORMAT
  72. ECHO.
  73. ECHO An error occured trying to format your diskette.
  74. ECHO Make sure that the FORMAT.COM program is in your C:\DOS directory
  75. ECHO and that the disk that you are attempting to format is a high
  76. ECHO density disk.
  77. ECHO.
  78. PAUSE
  79. GOTO END
  80.  
  81. :END
  82. CLS
  83. ECHO Thank you for using this boot utility.
  84. ECHO If you experience any problems creating a boot disk with this file
  85. ECHO please contact Maxis Technical Support. For contact information, please
  86. ECHO consult the documentation that came with your software.
  87. ECHO.
  88.  
  89.  
  90.